home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / Demos / Bombardier_PC / BSCRIPTS.CST / 00116_Script_pictRol < prev    next >
Text File  |  1999-04-25  |  910b  |  37 lines

  1. -- ⌐ 1998 @radical.media, inc. & Concurrent New Media Group, L.L.C.
  2. -- Developed for Bombardier, Inc.
  3. --
  4. -- All programming developed by: 
  5. -- Robert Fabricant, Valerie Valoueva, Ossi Shaked, 
  6. -- Henry Sauvageot, Chris Howell & Chris Girand
  7. --
  8. -- Use of this code by parties other than @radical.media, inc. or their
  9. --agents 
  10. -- without the express written consent of @radical.media, inc. AND Concurrent 
  11. -- New Media Group, L.L.C. is strictly prohibited.
  12. ------------------------------------------------------
  13.  
  14. on mouseEnter me
  15.   puppetsound 3,"subroll"
  16. end
  17.  
  18.  
  19. on mouseUp me
  20.   set frameName = getFrameName (me)
  21.   cursor -1
  22.   go to frameName
  23.   puppetsound 3,"mouse5"
  24.   
  25. end
  26.  
  27.  
  28. on getFrameName me
  29.   set save = the itemDelimiter
  30.   set the itemDelimiter = "_"
  31.   set value = item 1 of (the frameLabel)
  32.   set the itemDelimiter = save
  33.   set value = value&"_exit"
  34.   return value
  35. end
  36.  
  37.